github.com/klauspost/compress/zstd.sequenceDecs.seqSize (field)
20 uses
github.com/klauspost/compress/zstd (current package)
blockdec.go#L661: hist.decoders.seqSize = len(hist.decoders.literals)
decoder.go#L705: block.async.seqSize = hist.decoders.seqSize
decoder.go#L784: hist.decoders.seqSize = block.async.seqSize
seqdec.go#L73: seqSize int
seqdec.go#L125: if len(s.out)+s.seqSize > cap(s.out) {
seqdec.go#L126: addBytes := s.seqSize + len(s.out)
seqdec.go#L132: printf("Execute %d seqs with hist %d, dict %d, literals: %d into %d bytes\n", len(seqs), len(hist), len(s.dict), len(s.literals), s.seqSize)
seqdec.go#L136: out := s.out[:t+s.seqSize]
seqdec.go#L212: panic(fmt.Errorf("length mismatch, want %d, got %d, ss: %d", len(out), t, s.seqSize))
seqdec_amd64.go#L99: s.seqSize = 0
seqdec_amd64.go#L148: s.seqSize += ctx.litRemain
seqdec_amd64.go#L149: if s.seqSize > maxBlockSize {
seqdec_amd64.go#L254: s.seqSize = 0
seqdec_amd64.go#L296: s.seqSize += ctx.litRemain
seqdec_amd64.go#L297: if s.seqSize > maxBlockSize {
seqdec_amd64.go#L340: if len(s.out)+s.seqSize+compressedBlockOverAlloc > cap(s.out) {
seqdec_amd64.go#L341: addBytes := s.seqSize + len(s.out) + compressedBlockOverAlloc
seqdec_amd64.go#L347: printf("Execute %d seqs with literals: %d into %d bytes\n", len(seqs), len(s.literals), s.seqSize)
seqdec_amd64.go#L351: out := s.out[:t+s.seqSize]
seqdec_amd64.go#L381: panic(fmt.Errorf("length mismatch, want %d, got %d, ss: %d", len(out), t, s.seqSize))
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |